home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000200_news@columbia.edu_Thu Oct 26 01:14:00 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09746
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 25 Oct 1995 21:14:07 -0400
  3. Received: by apakabar.cc.columbia.edu id AA27893
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 25 Oct 1995 21:14:05 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: KdecF11 problems
  9. Date: 26 Oct 1995 01:14:00 GMT
  10. Organization: Columbia University
  11. Lines: 41
  12. Message-Id: <46mnco$r76@apakabar.cc.columbia.edu>
  13. References: <46jlce$jki@ixnews2.ix.netcom.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <46jlce$jki@ixnews2.ix.netcom.com>,
  18. Mario Rivera <mario.r@ix.netcom.com> wrote:
  19. : I recently purchased KERMIT 3.14 and am having a difficulty getting the
  20. : F1 key (and more actually) on my PC to emulate a KdecF11 key.  I'm
  21. : primarily interested in getting the F1 key to work and beleive that the
  22. : rest will follow once F1 is figured out.
  23. : I have Kermit 3.00 on my PC and the F1-F4 keys are set to emulate 
  24. : KdecF11-KdecF14 respectively.  This works great and I would like to do
  25. : the same using 3.14.  All the rest of the keys seem to work just fine
  26. : on 3.14 and if I get this fixed I'll be in business.
  27. : I began by setting the parameters of 3.14 to the parameters used on
  28. : 3.00.  When I couldn't get the F keys to work, I tried to toggle the
  29. : TERMINAL CONTROL to 7-bit and 8-bit to try to get one of those to work.
  30. : I also tried to start fresh by FTPing MSVIBM.ZIP via the internet. When
  31. : I  set the F1 key (manually or in VT300.INI) to KdecF11,  the SHOW KEY
  32. : shows that it's set but the it still doesn't work.  I've played around
  33. : with other parameters but still haven't gotten it to work.  I'm
  34. : stumped.
  35. : The F1 key does respond to it being pressed because there is cursor
  36. : movement but it doesn't do what it should, (in this particular VAX
  37. : application, it should do an exit, i.e. exit to main menu).
  38. Let's try to pin this down.  According to the VT220 manual, the DEC F11
  39. key is supposed to send:
  40.  
  41.   <CSI>23~
  42.  
  43. where CSI is "<ESC>[" in 7-bit mode, or character 155 (decimal) in
  44. 8-bit mode.
  45.  
  46. Experimentation shows that if you:
  47.  
  48.   set key \315 \KdecF11
  49.  
  50. and then you press the F1 key, then Kermit sends exactly the right
  51. characters.  So the problem would seem to be elsewhere.
  52.  
  53. - Frank